home *** CD-ROM | disk | FTP | other *** search
- // compiler.h
-
- #if !defined(COMPILER_H)
- #define COMPILER_H
-
- #if defined(_MSC_VER)
-
- #include<direct.h>
- #define ALL_FILES (_A_RDONLY | _A_HIDDEN | _A_SYSTEM | _A_ARCH)
- #define FA_DIREC _A_SUBDIR
- #define findfirst(buf,stru,attr) _dos_findfirst(buf,attr,stru)
- #define findnext(stru) _dos_findnext(stru)
- #define ffblk find_t
- #define ff_attrib attrib
- #define ff_name name
- #define ff_fdate wr_date
- #define ff_ftime wr_time
- #define ff_fsize size
-
- #endif
-
-
- #if defined(__TURBOC__) || defined(__BORLANDC__)
-
- #include<dir.h>
- #include<ctype.h>
- #define ALL_FILES (FA_RDONLY | FA_HIDDEN | FA_SYSTEM | FA_ARCH)
-
- #endif
-
- #if !defined(ERROR)
- #define ERROR -1
- #endif
-
- #if !defined(TRUE)
- #define TRUE 1
- #endif
-
- #if !defined(FALSE)
- #define FALSE 0
- #endif
-
- #endif
-
-